home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-27 | 924 b | 44 lines | [TEXT/MPS ] |
- /*
- * ConfigLibrary.exp
- *
- * Export declarations for Configuration Manager
- *
- * © 1993 by Apple Computer, Inc., all rights reserved.
- */
-
- #include <ODBCASLM.h>
-
- /*
- * These defines are library specific and need to be unique
- */
-
- #define kODBCdataTranslateID "appl:ODBC$SampleDataTranslateLibrary,1.0"
- #define kODBCdataTranslateFunctionSet "appl:ODBC$SampleDataTranslateFunctionSet,1.0"
-
- /*
- * The data translate library file
- */
-
- Library
- {
- initproc = SampleTranslateInit;
- cleanupProc = SampleTranslateObit;
- id = kODBCdataTranslateID;
- version = 1.0;
- memory = client;
- };
-
- /*
- * The data translate function set within the library file
- */
-
- FunctionSet ODBCdataTranslateFunctionSet
- {
- id = kODBCdataTranslateFunctionSet;
- version = 1.0;
- parentID = kODBCdataTranslateParentID;
- exports = extern pascal SQLDataSourceToDriver,
- extern pascal SQLDriverToDataSource,
- extern pascal ConfigTranslator;
- };
-